#ball_page_body{
    background-color: #efebf2;
    color: #464646;
}
.ixp-container{
    position: relative;
}
.ixp-container:after{
    clear:both
}
.ixp-container:after, .ixp-container:before{
    content:" ";
    display: table;
}

.modal-background {
    position: fixed;
    display: none;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    padding: 0;
    z-index: 5000;
    background-color: rgba(0,0,0,0.5);
    align-items: center;
}
.modal-background.active {
    display: flex;
}
.modal-background .modal-content {
    font-family: 'Conv_FS Humana-Regular', Calibri, Arial, Helvetica, Verdana, sans-serif !important;
    text-align: left;
    min-width: 0;
    color: #464646;
    position: relative;
    max-width: 600px;
    background: #fff;
    width: auto;
    margin: 1pc auto;
    height: max-content;
    padding: 40px;
    border-radius: 4px;
    box-shadow: 0 0 8px rgba(0,0,0,.6);
    box-sizing: border-box;
    font-size: 16px;
    line-height: 24px;
}
.modal-background .modal-content .modal-close {
    position: absolute;
    top: 5px;
    right: 10px;
    color: #333;
    border: none;
    background: none;
    cursor: pointer;
    padding: 0;
    font-size: 21px;
    font-weight: 400;
    line-height: 18px;
}
.modal-background .modal-content span {
    font-family: 'Conv_FS Humana-Bold', Calibri, Arial, Helvetica, Verdana, sans-serif !important;
     font-weight: bold;
    display: block;
    font-size: 24px;
    line-height: 36px;
    margin: 20px 0;
}
.modal-background .modal-content .modal-confirm {
    margin: 20px 0;
    display: inline-block;
}


/* Cookie Consent Section */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #47554b;
    color: #afc7ae;
    padding: 20px;
    text-align: center;
    box-shadow: 0 -2px 5px rgba(198, 235, 198, 0.2);
    z-index: 1000;
  }
  
  .cookie-actions button {
    margin: 10px;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-size: 14px;
    cursor: pointer;
  }
  
  #accept-cookies {
    background-color: #28a745;
    color: #fff;
  }
  
  #decline-cookies {
    background-color: #dc3545;
    color: #fff;
  }
  
  .cookie-actions button:hover {
    opacity: 0.8;
  }
  
  /* Floating Logo */
  .floating-logo {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
  }
  
  .floating-logo img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(207, 203, 203, 0.2);
    cursor: pointer;
    transition: transform 0.3s;
  }
  
  .floating-logo img:hover {
    transform: scale(1.1);
  }

  .articles-section {
    background: #f9f9f9;
    padding: 2rem;
    text-align: center;
  }
  .articles-section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
  .article {
    margin: 1rem 0;
    padding: 1rem;
    border: 1px solid #ccc;
    border-radius: 5px;
    background: #fff;
  }
  .article h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }
  .article p {
    font-size: 1rem;
    margin-bottom: 0.5rem;
  }
  .article a {
    display: inline-block;
    margin-top: 0.5rem;
    color: #007BFF;
    text-decoration: none;
  }

  .btncontainer {
    height: 200px;
    position: relative;
    margin: 0;
    padding: 20px;
  }
  
  .btnvertical-center {
    margin: 0;
    position: absolute;
    top: 50%;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
  }